home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / nt / source.exe / POSIX / BSDPSX / LSTAT.C < prev    next >
C/C++ Source or Header  |  1992-06-27  |  173b  |  12 lines

  1. #include <sys/types.h>
  2. #include <sys/stat.h>
  3. /*
  4.  * Lstat: Posix Implementation DF_AJ
  5.  */
  6.  
  7.  
  8. int lstat (char *path, struct stat *buf)
  9. {
  10.     return stat (path, buf);
  11. }
  12.